home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 7 / FM Towns Free Software Collection 7.iso / taropyon / guilib3 / inc / setupif.h < prev    next >
C/C++ Source or Header  |  1993-11-30  |  947b  |  49 lines

  1. #ifndef    _SETUPIF_H
  2. #define    _SETUPIF_H
  3.  
  4. #ifndef    _SPDEFS_H
  5. #    include    "spdefs.h"
  6. #endif
  7.  
  8. typedef    struct
  9. {
  10.     UCHAR            bootDeviceType;
  11.     UCHAR            bootUnitNumber;
  12.     USHORT            memoryIntsallFlag;
  13.     USHORT            memorySize;
  14.     UCHAR            singleDrive;
  15.     UCHAR            reserve_01[2];
  16.     UCHAR            cpmgrInstallFlag;
  17.     UCHAR            vjeInstallFlag;
  18.     UCHAR            dmy_1;
  19.     USHORT            ramDiskSize;
  20.     UCHAR            reserve_02[1];
  21.     UCHAR            reserve_03[2];
  22.     UCHAR            fepInstallFlag;
  23.     UCHAR            reserve_04;
  24.     UCHAR            reserve_05[13];
  25.     UCHAR            reserve_06[16];
  26.     struct
  27.     {    UCHAR    drvType;
  28.         UCHAR    drvNo;
  29.     } drvinf[16];
  30.     UCHAR            printerId;
  31.     UCHAR            printerMode;
  32.     UCHAR            printerOption;
  33.     UCHAR            printerReserve[2];
  34.     UCHAR            printerType;
  35.     UCHAR            reserve_07[10];
  36.     UCHAR            reserve_08[2];
  37.     struct
  38.     {    UCHAR        baud;
  39.         UCHAR        mode;
  40.         USHORT        sndTimeOut;
  41.         USHORT        rsvTimeOut;
  42.     } rs232c[5];
  43.     UCHAR            reserve_09[16*4+8];
  44. } RSYSINF_T;
  45.  
  46. extern    int    ESR_setupInfo( RSYSINF_T *rsys );
  47.  
  48. #endif
  49.